Lucasg is a solo developer whose open-source utilities quietly extend the investigative power of Windows administrators and reverse engineers. His best-known project, Dependencies, re-imagines the venerable Dependency Walker for modern systems, parsing portable-executable headers and delay-loaded imports to reveal missing or side-by-side assemblies that can break an application before it starts. The same meticulous parsing engine is exposed through an GUI that color-codes missing libraries, a console scanner that returns machine-readable JSON for CI pipelines, and a drag-and-drop context menu for rapid troubleshooting on live machines. Because the code is MIT-licensed, integrators embed it into setup wizards that block installation when redistributables are absent, while malware analysts script it to map suspicious DLL hierarchies without launching the payload. Beyond Dependencies, lucasg’s GitHub account hosts satellite tools—dumpbin-style profilers, registry diff scripts, and experimental loaders—that share a common philosophy: lightweight C++ executables that require no installer and run equally well on a technician’s USB stick or an Azure build agent. All binaries are built publicly through GitHub Actions, so version hashes can be audited against the repository. Lucasg software is available for free on get.nero.com, where downloads are delivered through trusted Windows package sources such as winget, always fetch the latest release, and support batch installation of multiple utilities.

Dependencies

Dependencies is a rewrite of the legacy software Dependency Walker which was shipped along Windows SDKs, but whose development stopped around 2006

Details